4.85-RN - #25665
Conversation
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
docker-agent
left a comment
There was a problem hiding this comment.
Assessment: 🟡 NEEDS ATTENTION
One issue found in the 4.85.0 release notes addition: the build_path shortcode parameter appears to be a placeholder value (//) rather than the actual build number. All other versions use a specific numeric path.
|
|
||
| {{< release-date date="2026-08-03" >}} | ||
|
|
||
| {{< desktop-install-v2 all=true win_arm_release="Early Access" version="4.85.0" build_path="//" >}} |
There was a problem hiding this comment.
[MEDIUM] build_path="//" appears to be a placeholder — likely missing the actual build number
Every previous release entry uses a specific numeric build path (e.g., build_path="/234817/" for 4.84.0, build_path="/234302/" for 4.83.0). The value "//" does not match this pattern and will likely produce a broken or malformed download URL for users trying to install Docker Desktop 4.85.0.
Replace "//" with the correct build path for this release before merging.
|
|
||
| {{< release-date date="2026-08-03" >}} | ||
|
|
||
| {{< desktop-install-v2 all=true win_arm_release="Early Access" version="4.85.0" build_path="//" >}} |
There was a problem hiding this comment.
@akristen need to replace the X's with the build number
| {{< desktop-install-v2 all=true win_arm_release="Early Access" version="4.85.0" build_path="//" >}} | |
| {{< desktop-install-v2 all=true win_arm_release="Early Access" version="4.85.0" build_path="/XXXXXX/" >}} |
Description
Related issues or tickets
Reviews